home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetMasterPageName.cpp ----------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PGetMasterPageName.html
- *-------------------------------------------------------------------------
- */
-
- #include "PGetMasterPageName.h"
- #include "PQuery.h"
- #include "PRequestBuf.h"
-
- PGetMasterPageName::PGetMasterPageName(unsigned long nPageID)
- : PStringQuery()
- {
- char temp[8];
-
- PRequestBuf request(temp);
-
- request << nPageID;
-
- PQuery query(pm_getmasterpagename, request, itsHandle);
-
- InitHandle();
- }
-
- // end of PGetMasterPageName.cpp
-